home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / CircLib1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  396 b   |  25 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        CircLib1.c
  3.  
  4.     Contains:    Test for cyclical dependencies working
  5.  
  6.     Copyright:    © 1992-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #include <LibraryManagerUtilities.h>
  11.  
  12. static int gGlobalValue    = 515;
  13.  
  14. int CircLib1()
  15. {
  16.     GlobalWorld saved = OpenGlobalWorld();
  17.     int foo = gGlobalValue;
  18.     CloseGlobalWorld(saved);
  19.     return foo;
  20. }
  21.  
  22. OSErr UnloadCircLib1()
  23. {
  24.     return UnloadLibraries();
  25. }